home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / misc / fcxref.lha / FCXRef / Src / Makefile < prev    next >
Makefile  |  1999-02-09  |  827b  |  47 lines

  1. # :ts=8
  2. #
  3. #
  4.  
  5. CFLAGS = -m68030 -Wall -O3 -noixemul -s
  6.  
  7. all:            mref FastCXRef
  8.  
  9. date:
  10.             ver FastCXRef
  11.  
  12. rev:
  13.             ver FastCXRef -r
  14.  
  15. mref:            mref.o dirwalker.o head.o stack.o
  16.             gcc $(CFLAGS) -o mref mref.o dirwalker.o head.o stack.o -lfl
  17.  
  18. FastCXRef:        xref.o cxref.o FastCXRef_ver.o
  19.             gcc $(CFLAGS) -o FastCXRef xref.o cxref.o FastCXRef_ver.o
  20.  
  21. xref.o:            xref.c cxref_rxcl.c xref_loc.c
  22.             gcc $(CFLAGS) -c xref.c
  23.  
  24. FastCXRef_ver.c:
  25.             ver FastCXRef
  26.  
  27. FastCXRef_ver.o:    FastCXRef_ver.c
  28.             gcc $(CFLAGS) -c FastCXRef_ver.c
  29.  
  30. cxref.o:        cxref.c cxref.h
  31.             gcc $(CFLAGS) -c cxref.c
  32.  
  33. mref.o:            mref.c
  34.             gcc $(CFLAGS) -c mref.c
  35.  
  36. dirwalker.o:        dirwalker.c dirwalker.h
  37.             gcc $(CFLAGS) -c dirwalker.c
  38.  
  39. head.c:            head.l
  40.             flex -t head.l >head.c
  41.  
  42. head.o:            head.c
  43.             gcc $(CFLAGS) -c head.c
  44.  
  45. stack.o:        stack.c stack.h
  46.             gcc $(CFLAGS) -c stack.c
  47.